home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 19
/
Aminet 19 (1997)(GTI - Schatztruhe)[!][Jun 1997].iso
/
Aminet
/
comm
/
bbs
/
FList_211.lha
/
FList
/
Rexx
/
FListDelMrk.Trans
< prev
next >
Wrap
Text File
|
1997-01-19
|
1KB
|
66 lines
/**/
options results
path="BBS:Extras/FListSaveDL/"
userinfo 'a'
name=result
userinfo 'x'
ansi=result
if ansi="ON" then do
up="A"
lclr=""
red="
"
grn="
"
yel="
"
blu="
"
mag="
"
cyn="
"
wht="
"
bred="
"
bgrn="
"
byel="
"
bblu="
"
bmag="
"
bcyn="
"
bwht="
"
bld="
"
ubld=""
fsh="
"
clr=""
end
else do
up=""
lclr=""
red=""
grn=""
yel=""
blu=""
mag=""
cyn=""
wht=""
bred=""
bgrn=""
byel=""
bblu=""
bmag=""
bcyn=""
bwht=""
bld=""
ubld=""
fsh=""
clr=""
end
if exists(path||name'.sdl') then do
newline
send clr||bld||blu"["cyn"FList"blu"]"wht" Delete your saved file(s) list, Y/n? "yel
do i=5 to 1 by -1
send right(i,2,'0')'D'
address command "wait 1 sec"
maygetchar
if upper(result)~="NOCHAR"&upper(result)="N" then do;send clr||red"["bld"No!"clr||red"]";i=-1;end
else if upper(result)~="NOCHAR"&upper(result)~="N" then do;i=-1;send clr||grn"["bld"Yes!"clr||grn"]";address command 'delete "'path||name'.sdl" quiet noreq';end
end
if i=0 then do;send clr||grn"["bld"Yes!"clr||grn"]";address command 'delete "'path||name'.sdl" quiet noreq';end
newline
end